SETUP: To setup the library for use with Corona Pro and the simulator (and not Corona Enterprise): 

1) Delete the SVN Extenal sub-directories: CMN, spine-corona, spine-lua
2) Create a softlink named "wonsterlib" from your Wonster project. Also, create ones for Common, and any other libraries you need.It's important you use the correct name.

    cd SVN/WonsterWords/trunk
    ln -s ../../WonsterLib/trunk ./wonsterlib
    ln -s ../../Common/trunk ./CMN
    ln -s ../../Spine/trunk/spine-lua ./spine-lua
    ln -s ../../Spine/trunk/spine-corona ./spine-corona
    

----------
CODE:

To access the Library (including images and sound files) in the code, this is how you do it. 

	local fooBar = require("wonsterlib.FooBar");

	fooBar.test();
	local img = display.newImageRect( "wonsterlib/images/Btn_NewVersion.png", 90, 90);
	local snd = audio.loadSound( "wonsterlib/audio/SFX_BoxExploding.mp3" );





